home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / tobby_on_ice.swf / scripts / DefineSprite_104_BG_base / frame_3 / DoAction.as
Text File  |  2011-08-19  |  324b  |  17 lines

  1. if(_root.pauseFlg == false)
  2. {
  3.    this._x -= _root.scrolldx - _root.hoseidx;
  4.    _root.bgLimitFlg = false;
  5.    if(this._x > 0)
  6.    {
  7.       _root.bgLimitFlg = true;
  8.       this._x = 0;
  9.    }
  10.    if(this._x < -630)
  11.    {
  12.       _root.bgLimitFlg = true;
  13.       this._x = -630;
  14.    }
  15. }
  16. this.gotoAndPlay(_currentframe - 1);
  17.